view$90324$ - перевод на греческий
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

view$90324$ - перевод на греческий

RESULT SET OF A STORED QUERY ON A DATABASE
Database view; Data view; View (database)

view      
n. άποψη, όψη, φρόνημα, θέα, θεωρία, σκοπός, ιδέα
side mirror         
  • Large side mirror from a [[Honda Ridgeline]] with [[vortex generator]]s to reduce wind noise
  • Side-view mirror
  • Driver's control for side mirrors, with tiny curb-view button
  • Side mirror retraction control
  • Side mirror with warning legend
  • Side mirror on Korean-spec vehicle. Legend in Korean reads "[[Objects in mirror are closer than they appear]]".
  • [[Ford Fiesta]] side mirror with integrated turn signal repeater
SIDE MIRRORS IN VEHICLES
Wing mirror; Side-view mirrors; Wing mirrors; Side mirror; Door mirror; Side view mirror; Outside Rear View Mirror; ORVM; Wing-mirror; Fender mirror; Digital Side Mirror
εξωτερικός καθρέφτης
point of view         
WIKIMEDIA DISAMBIGUATION PAGE
Points of view; Point of View; Point-of-view; Points of views; POVP; Points of View (disambiguation); Point of view (disambiguation); Point of View (album); Point of View (song); Points of View; Point of View (sculpture)
n. άποψη

Определение

Model View Controller
<programming> (MVC) A way of partitioning the design of interactive software. The "model" is the internal workings of the program (the algorithms), the "view" is how the user sees the state of the model and the "controller" is how the user changes the state or provides input. (2007-05-30)

Википедия

View (SQL)

In a database, a view is the result set of a stored query, which can be queried in the same manner as a persistent database collection object. This pre-established query command is kept in the database dictionary. Unlike ordinary base tables in a relational database, a view does not form part of the physical schema: as a result set, it is a virtual table computed or collated dynamically from data in the database when access to that view is requested. Changes applied to the data in a relevant underlying table are reflected in the data shown in subsequent invocations of the view.

Views can provide advantages over tables:

  • Views can represent a subset of the data contained in a table. Consequently, a view can limit the degree of exposure of the underlying tables to the outer world: a given user may have permission to query the view, while denied access to the rest of the base table.
  • Views can join and simplify multiple tables into a single virtual table.
  • Views can act as aggregated tables, where the database engine aggregates data (sum, average, etc.) and presents the calculated results as part of the data.
  • Views can hide the complexity of data. For example, a view could appear as Sales2000 or Sales2001, transparently partitioning the actual underlying table.
  • Views take very little space to store; the database contains only the definition of a view, not a copy of all the data that it presents.
  • Depending on the SQL engine used, views can provide extra security.

Just as a function (in programming) can provide abstraction, so can a database view. In another parallel with functions, database users can manipulate nested views, thus one view can aggregate data from other views. Without the use of views, the normalization of databases above second normal form would become much more difficult. Views can make it easier to create lossless join decomposition.

Just as rows in a base table lack any defined ordering, rows available through a view do not appear with any default sorting. A view is a relational table, and the relational model defines a table as a set of rows. Since sets are not ordered — by definition — neither are the rows of a view. Therefore, an ORDER BY clause in the view definition is meaningless; the SQL standard (SQL:2003) does not allow an ORDER BY clause in the subquery of a CREATE VIEW command, just as it is refused in a CREATE TABLE statement. However, sorted data can be obtained from a view, in the same way as any other table — as part of a query statement on that view. Nevertheless, some DBMS (such as Oracle Database) do not abide by this SQL standard restriction.